home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / GCC-2.3.3r12 / Misc / cross-make < prev    next >
Encoding:
Text File  |  1993-02-05  |  914 b   |  31 lines  |  [TEXT/MPS ]

  1. # This variable gets added to GCC_CFLAGS.
  2. CROSS_GCC_CFLAGS = -B$(tooldir)/bin/
  3.  
  4. # Expect user to provide libgcc1.a,
  5. # and give up immediately if the user has not done so.
  6. LIBGCC1 = libgcc1.cross
  7.  
  8. # Specify tools and options for manipulating libraries for the target machine.
  9. AR = $(AR_FOR_TARGET)
  10. AR_FLAGS = $(AR_FOR_TARGET_FLAGS)
  11. OLDAR = $(AR_FOR_TARGET)
  12. OLDAR_FLAGS = $(AR_FOR_TARGET_FLAGS)
  13. RANLIB = $(RANLIB_FOR_TARGET)
  14. RANLIB_TEST = $(RANLIB_TEST_FOR_TARGET)
  15.  
  16. # Cause installation of the cross-compilation tools
  17. # before we try to build libgcc.a.
  18. CROSS_TOOLS = install-cross-tools
  19.  
  20. # Dir to search for system headers.  Normally /usr/include.
  21. SYSTEM_HEADER_DIR = $(libsubdir)/sys-include
  22.  
  23. # Cause installation using install-cross.
  24. INSTALL_TARGET = install-cross
  25.  
  26. # Don't try to compile the things we can't compile.
  27. ALL = all.cross
  28.  
  29. # Don't install assert.h in /usr/local/include.
  30. assertdir = $(tooldir)/include
  31.